3dak Client

NavigationPage<PagingType>.item Property

Item of the page

[C#] In C#, this property is the indexer for the NavigationPage<PagingType> class.

[Visual Basic]
Public Default Property ReadOnly item( _ 
   ByVal Int32 As Int32 _ 
) As 
[C#]
public PagingType this[
   int Int32
] { get; }
[C++]
public: __property * get_NavigationPage<PagingType>.PagingType(
   int Int32
);
[JScript]
returnValue = NavigationPage<PagingType>Object.Item( Int32 );
-or-
returnValue = NavigationPage<PagingType>Object( Int32 );

[JScript] In JScript, you can use the default indexed properties defined by a type, but you cannot explicitly define your own. However, specifying the expando attribute on a class automatically provides a default indexed property whose type is Object and whose index type is String.

Parameters

index
Item index

Property Value

Remarks

See Also

NavigationPage<PagingType> Class | ppm3dakClient.Navigation Namespace